Mercurial > touhou
diff scripts/pytouhou @ 596:ab131d04987d
Fix a regression introduced in the previous commit when the interface has a different resolution than 640×480 and framebuffer_blit is enabled.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Sat, 25 Oct 2014 18:49:41 +0200 |
parents | e15672733c93 |
children | 244c99c568c8 |
line wrap: on
line diff
--- a/scripts/pytouhou +++ b/scripts/pytouhou @@ -280,8 +280,8 @@ def main(window, path, data, stage_num, with SDL(sound=args.no_sound): - window = Window(backend, fps_limit=args.fps_limit, - frameskip=args.frameskip) + window = Window(backend, Interface.width, Interface.height, + fps_limit=args.fps_limit, frameskip=args.frameskip) main(window, args.path, tuple(args.data), args.stage, args.rank, args.character, args.replay, args.save_replay, args.skip_replay,