Skip to content

Commit

Permalink
Merge branch 'develop' into patch-3
Browse files Browse the repository at this point in the history
  • Loading branch information
yippeeeyay authored Dec 2, 2024
2 parents 65b86c3 + 040e57e commit 9b24762
Show file tree
Hide file tree
Showing 18 changed files with 742 additions and 1,368 deletions.
2 changes: 1 addition & 1 deletion Cores/CrabEMU
2 changes: 1 addition & 1 deletion Cores/Gearcoleco/BuildFlags.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

// All
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) __LIBRETRO__=1
OTHER_CFLAGS = $(inherited) -ObjC -fmodules -fcxx-modules
OTHER_CFLAGS = $(inherited) -ObjC -fmodules -fcxx-modules -fvisibility=hidden -fvisibility-inlines-hidden
OTHER_LDFLAGS = $(inherited) -ObjC -Wl,-all_load -all_load

// Device
Expand Down
2 changes: 1 addition & 1 deletion Cores/Gearcoleco/Gearcoleco
Submodule Gearcoleco updated 338 files
952 changes: 43 additions & 909 deletions Cores/Gearcoleco/PVGearcoleco.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Cores/Gearcoleco/PVGearcolecoCore/PVGearcolecoCore.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
#import <PVCoreBridgeRetro/PVCoreBridgeRetro.h>
#import <PVCoreObjCBridge/PVCoreObjCBridge.h>

@protocol PVMSXSystemResponderClient;
@protocol PVColecoVisionSystemResponderClient;

#define GET_CURRENT_AND_RETURN(...) __strong __typeof__(_current) current = _current; if(current == nil) return __VA_ARGS__;
#define GET_CURRENT_OR_RETURN(...) __strong __typeof__(_current) current = _current; if(current == nil) return __VA_ARGS__;

__attribute__((visibility("default")))
@interface PVGearcolecoCoreBridge : PVLibRetroCoreBridge <PVMSXSystemResponderClient> {
@interface PVGearcolecoCoreBridge : PVLibRetroCoreBridge <PVColecoVisionSystemResponderClient> {
// uint8_t padData[4][PVDOSButtonCount];
// int8_t xAxis[4];
// int8_t yAxis[4];
Expand Down
Loading

0 comments on commit 9b24762

Please sign in to comment.