iOS: Undo app ID change.

This commit is contained in:
Unknown W. Brackets 2021-02-20 07:03:39 -08:00
parent 5b737586b7
commit b77d47e357
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
<key>CFBundleExecutable</key>
<string>PPSSPP</string>
<key>CFBundleIdentifier</key>
<string>org.ppsspp.ppsspptest</string>
<string>org.ppsspp.ppsspp</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>

View File

@ -397,7 +397,7 @@ int ToTouchID(UITouch *uiTouch, bool allowAllocate) {
if (allowAllocate) {
for (int localId = 1; localId < (int)ARRAY_SIZE(g_touches); ++localId) {
if (g_touches[localId] == 0) {
g_touches[localId] = uiTouch;
g_touches[localId] = uiTouch;
return localId;
}
}