summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2016-08-15 15:36:18 -0400
committer GitHub <noreply@github.com>2016-08-15 15:36:18 -0400
commit9ec0c60147662085a23914e01966823e73c21f5a (patch)
treef0ea7cc3ca05c936205e28705eec6fd66ca6cbb1 /scripts/src
parentb85a797e81efb27fbcb9d45c242ff5467f4ac340 (diff)
parent318952746f2c395b422df1d8ca08eb40b37da42f (diff)
Merge pull request #1244 from GiuseppeGorgoglione/master
Rework and simplify GBA code
Diffstat (limited to 'scripts/src')
-rw-r--r--scripts/src/video.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/video.lua b/scripts/src/video.lua
index 95cccd99bfe..8958c7e3852 100644
--- a/scripts/src/video.lua
+++ b/scripts/src/video.lua
@@ -876,3 +876,15 @@ if (VIDEOS["GB_LCD"]~=null) then
MAME_DIR .. "src/devices/video/gb_lcd.h",
}
end
+
+--------------------------------------------------
+--
+--@src/devices/video/gba_lcd.h,VIDEOS["GBA_LCD"] = true
+--------------------------------------------------
+
+if (VIDEOS["GBA_LCD"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/video/gba_lcd.cpp",
+ MAME_DIR .. "src/devices/video/gba_lcd.h",
+ }
+end