Skip to content

Commit

Permalink
Fixed compilation with FULLSCREEN_RESFREQ disabled (#388).
Browse files Browse the repository at this point in the history
  • Loading branch information
punesemu committed Mar 23, 2024
1 parent 6ce2cee commit e1516fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/emu.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
#include "recent_roms.h"
#include "../../c++/crc/crc.h"
#include "gui.h"
#include "nes20db.h"
#include "video/effects/pause.h"
#include "video/effects/tv_noise.h"
#if defined (FULLSCREEN_RESFREQ)
#include "video/gfx_monitor.h"
#include "nes20db.h"
#endif

#define RS_SCALE (1.0f / (1.0f + (float)RAND_MAX))
Expand Down
2 changes: 1 addition & 1 deletion src/gui/wdgOverlayUi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
#include "rewind.h"
#include "version.h"
#include "nes.h"
#include "input/standard_controller.h"
#if defined (FULLSCREEN_RESFREQ)
#include "video/gfx_monitor.h"
#include "input/standard_controller.h"
#endif

void overlay_info_append_qstring(BYTE alignment, const QString &msg);
Expand Down

0 comments on commit e1516fc

Please sign in to comment.