all repos — mgba @ ee5dbd9f82c768df23afbd5262b58496a2ec8d78

mGBA Game Boy Advance Emulator

Tools: Fix recurring multiple times over the same library
Vicki Pfau vi@endrift.com
Fri, 03 Feb 2017 09:37:28 -0800
commit

ee5dbd9f82c768df23afbd5262b58496a2ec8d78

parent

aaec68ee4896fd316660088a3c2c02c7bd3b7241

2 files changed, 4 insertions(+), 1 deletions(-)

jump to
M CHANGESCHANGES

@@ -22,6 +22,7 @@ - GB MBC: Fix ROM bank overflows getting set to bank 0

- Qt: Fix timing issues on high refresh rate monitors - GBA Savedata: Fix savedata unmasking (fixes mgba.io/i/441) - Util: Fix overflow when loading invalid UPS patches + - Tools: Fix recurring multiple times over the same library Misc: - SDL: Remove scancode key input - GBA Video: Clean up unused timers
M tools/deploy-mac.pytools/deploy-mac.py

@@ -96,6 +96,7 @@ continue

if os.access(newPath, os.F_OK): if verbose: print('Skipping copying {}, already done.'.format(oldPath)) + newPath = None elif os.path.abspath(oldPath) != os.path.abspath(newPath): if verbose: print('Copying {} to {}...'.format(oldPath, newPath))

@@ -111,7 +112,8 @@ print('Found Qt path at {}.'.format(qtPath))

args = [installNameTool] for path, oldExecPath, newExecPath in toUpdate: if path != bin: - updateMachO(path, execPath, root) + if path: + updateMachO(path, execPath, root) if verbose: print('Updating Mach-O load from {} to {}...'.format(oldExecPath, newExecPath)) args.extend(['-change', oldExecPath, newExecPath])