mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-25 04:01:03 +00:00
4220e14522
Thanks to the great help of @criezy, here's my implementation of an GUI dialog that appears when an unknown game is detected. Features: - Allows copying the data collected by game detector to the clipboard - Allows opening the bug tracker and pre-filling the form fiels This closes https://bugs.scummvm.org/ticket/10435.
14 lines
196 B
Makefile
14 lines
196 B
Makefile
MODULE := engines
|
|
|
|
MODULE_OBJS := \
|
|
advancedDetector.o \
|
|
dialogs.o \
|
|
engine.o \
|
|
game.o \
|
|
obsolete.o \
|
|
savestate.o \
|
|
unknown-game-dialog.o
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|