summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--scripts/resources/windows/mame/mame.ico (renamed from src/mame/osd/windows/mame/mame.ico)bin372526 -> 372526 bytes
-rw-r--r--scripts/resources/windows/mame/mame.man (renamed from src/mame/osd/windows/mame/mame.man)0
-rw-r--r--scripts/resources/windows/mame/mame.rc (renamed from src/mame/osd/windows/mame/mame.rc)0
-rw-r--r--scripts/resources/windows/mess/mess.ico (renamed from src/mame/osd/windows/mess/mess.ico)bin372526 -> 372526 bytes
-rw-r--r--scripts/resources/windows/mess/mess.man (renamed from src/mame/osd/windows/mess/mess.man)0
-rw-r--r--scripts/resources/windows/mess/mess.rc (renamed from src/mame/osd/windows/mess/mess.rc)0
-rw-r--r--scripts/src/main.lua7
7 files changed, 2 insertions, 5 deletions
diff --git a/src/mame/osd/windows/mame/mame.ico b/scripts/resources/windows/mame/mame.ico
index 62761447fc2..62761447fc2 100644
--- a/src/mame/osd/windows/mame/mame.ico
+++ b/scripts/resources/windows/mame/mame.ico
Binary files differ
diff --git a/src/mame/osd/windows/mame/mame.man b/scripts/resources/windows/mame/mame.man
index e08eba181cb..e08eba181cb 100644
--- a/src/mame/osd/windows/mame/mame.man
+++ b/scripts/resources/windows/mame/mame.man
diff --git a/src/mame/osd/windows/mame/mame.rc b/scripts/resources/windows/mame/mame.rc
index 8156b424c64..8156b424c64 100644
--- a/src/mame/osd/windows/mame/mame.rc
+++ b/scripts/resources/windows/mame/mame.rc
diff --git a/src/mame/osd/windows/mess/mess.ico b/scripts/resources/windows/mess/mess.ico
index bab67dd6195..bab67dd6195 100644
--- a/src/mame/osd/windows/mess/mess.ico
+++ b/scripts/resources/windows/mess/mess.ico
Binary files differ
diff --git a/src/mame/osd/windows/mess/mess.man b/scripts/resources/windows/mess/mess.man
index 67ba3aced37..67ba3aced37 100644
--- a/src/mame/osd/windows/mess/mess.man
+++ b/scripts/resources/windows/mess/mess.man
diff --git a/src/mame/osd/windows/mess/mess.rc b/scripts/resources/windows/mess/mess.rc
index 1329bcd6fb8..1329bcd6fb8 100644
--- a/src/mame/osd/windows/mess/mess.rc
+++ b/scripts/resources/windows/mess/mess.rc
diff --git a/scripts/src/main.lua b/scripts/src/main.lua
index f65786074b7..7d97eae1c1c 100644
--- a/scripts/src/main.lua
+++ b/scripts/src/main.lua
@@ -255,10 +255,7 @@ end
local rctarget = _subtarget
if _OPTIONS["targetos"]=="windows" and (not override_resources) then
- local rcfile = MAME_DIR .. "src/" .. _target .. "/osd/".._OPTIONS["osd"].."/" .. _subtarget .. "/" .. rctarget ..".rc"
- if not os.isfile(rcfile) then
- rcfile = MAME_DIR .. "src/" .. _target .. "/osd/windows/" .. _subtarget .. "/" .. rctarget ..".rc"
- end
+ rcfile = MAME_DIR .. "scripts/resources/windows/" .. _subtarget .. "/" .. rctarget ..".rc"
if os.isfile(rcfile) then
files {
rcfile,
@@ -269,7 +266,7 @@ end
else
rctarget = "mame"
files {
- MAME_DIR .. "src/mame/osd/windows/mame/mame.rc",
+ MAME_DIR .. "scripts/resources/windows/mame/mame.rc",
}
dependency {
{ "$(OBJDIR)/mame.res" , GEN_DIR .. "resource/" .. rctarget .. "vers.rc", true },