mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Buildfix for everything.
Oops.
This commit is contained in:
parent
9b85bdf620
commit
9948da9a21
2 changed files with 5 additions and 5 deletions
|
@ -172,8 +172,8 @@ public:
|
|||
MatchQuality match = MATCH_NONE;
|
||||
|
||||
#define CHECK_FIELD(f, m) \
|
||||
if (style.##f != 0) { \
|
||||
if (style.##f != style_.##f) { \
|
||||
if (style.f != 0) { \
|
||||
if (style.f != style_.f) { \
|
||||
return MATCH_NONE; \
|
||||
} \
|
||||
if (match < m) { \
|
||||
|
@ -181,8 +181,8 @@ public:
|
|||
} \
|
||||
}
|
||||
#define CHECK_FIELD_STR(f, m) \
|
||||
if (style.##f[0] != '\0') { \
|
||||
if (strcmp(style.##f, style_.##f) != 0) { \
|
||||
if (style.f[0] != '\0') { \
|
||||
if (strcmp(style.f, style_.f) != 0) { \
|
||||
return MATCH_NONE; \
|
||||
} \
|
||||
if (match < m) { \
|
||||
|
|
2
native
2
native
|
@ -1 +1 @@
|
|||
Subproject commit 2b6e00420195583a60deb9a31f80c39753c0f9ab
|
||||
Subproject commit 3f9301d449a9a291b390abe9a2dd0d0d8a71c997
|
Loading…
Add table
Reference in a new issue