diff options
author | retro-wertz | 2019-07-30 10:08:33 +0800 |
---|---|---|
committer | retro-wertz | 2019-07-30 10:18:51 +0800 |
commit | 059306fc8bb391b4afa4d84f1cf2247d5b22c8b8 (patch) | |
tree | b0ed29a8b7763e0a366169fc750e69f9a4fd6c64 | |
parent | 2d17de264fd31d662d4580a5f4bf268fa9ebd42a (diff) | |
download | pcsx_rearmed-059306fc8bb391b4afa4d84f1cf2247d5b22c8b8.tar.gz pcsx_rearmed-059306fc8bb391b4afa4d84f1cf2247d5b22c8b8.tar.bz2 pcsx_rearmed-059306fc8bb391b4afa4d84f1cf2247d5b22c8b8.zip |
Silence this log message
- Removing this log message since RETRO_ENVIRONMENT_SET_GEOMETRY will show width and height when there is a change from last callback.
-rw-r--r-- | frontend/libretro.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c index 86cd34e..e48069a 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -191,8 +191,6 @@ static void vout_set_mode(int w, int h, int raw_w, int raw_h, int bpp) previous_width = vout_width; previous_height = vout_height; - SysPrintf("setting mode width: %d height %d\n", vout_width, vout_height); - struct retro_system_av_info info; retro_get_system_av_info(&info); environ_cb(RETRO_ENVIRONMENT_SET_GEOMETRY, &info.geometry); |