Main Restorations Software Audio/Jukebox/MP3 Everything Else Buy/Sell/Trade
Project Announcements Monitor/Video GroovyMAME Merit/JVL Touchscreen Meet Up Retail Vendors
Driving & Racing Woodworking Software Support Forums Consoles Project Arcade Reviews
Automated Projects Artwork Frontend Support Forums Pinball Forum Discussion Old Boards
Raspberry Pi & Dev Board controls.dat Linux Miscellaneous Arcade Wiki Discussion Old Archives
Lightguns Arcade1Up Try the site in https mode Site News

Unread posts | New Replies | Recent posts | Rules | Chatroom | Wiki | File Repository | RSS | Submit news

  

Author Topic: Daytona USA ++ Patch - Modding and Hacks  (Read 139380 times)

0 Members and 2 Guests are viewing this topic.

ant2

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 227
  • Last login:March 26, 2024, 02:36:51 pm
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #80 on: January 09, 2016, 05:40:05 pm »
I now have surround sound for daytona :) - sounds awesome.
Good work on this :)

Daveybird

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 14
  • Last login:January 28, 2018, 06:06:55 pm
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #81 on: January 13, 2016, 02:32:30 pm »
Hey Nuexzz, I think the reason you only got 20 cars is because you extracted them from Dinosaur Canyon, the Advanced track. Three Seven Speedway has all 40.

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #82 on: January 13, 2016, 02:39:54 pm »
now I have more than 100 cars rivals, I have to add the patch that is what takes me longer  :dunno :dunno

Daveybird

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 14
  • Last login:January 28, 2018, 06:06:55 pm
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #83 on: January 13, 2016, 05:03:49 pm »
Great! When will that new patch be out? I saw you even snuck the Indy Car in there!

N4HW3ll

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 15
  • Last login:February 26, 2018, 03:23:07 pm
  • Daytona usa experimented Player
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #84 on: January 13, 2016, 05:55:58 pm »
hey nuexzz, did ya found the cpu models of the 8 online cars?  ;D

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #85 on: January 14, 2016, 01:05:04 am »
yes they are 1- to 100 and more  ;D

Daveybird

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 14
  • Last login:January 28, 2018, 06:06:55 pm
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #86 on: January 14, 2016, 07:04:49 am »
yes they are 1- to 100 and more  ;D

Hey, can you please tell me the memory addresses of each car?

SailorSat

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1208
  • Last login:Yesterday at 10:28:00 pm
    • For Amusement Only e.V.
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #87 on: January 14, 2016, 07:45:58 am »
Hey, can you please tell me the memory addresses of each car?

there are a few things to note:

each "car" in the game has some basic values like the position, rotation and models (yes, multiple) as well as information on "what" it is and "who" controls is (player + node, cpu, script etc.)

A list of notable "models" can be found here.
Most of the cars are available in 4 versions (polygon count goes lower every time) - and they get changed all the time while driving (based on the distance to the camera/player).

side fact - daytona still have some leftovers from virtua racing and virtua stock car (daytona's working title on model1) :) {and virtua stock car is even left in the artworks 3rd car on the front (white)}
I do all that stuff even without a Joystick ;)
Soft-15kHz, cabMAME, For Amusement Only e.V.


Daveybird

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 14
  • Last login:January 28, 2018, 06:06:55 pm
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #88 on: January 14, 2016, 08:51:49 am »
Okay, thanks. Are those all the AI cars, or only the 20 that Nuexzz found before? And also. how do you put these in game with a lua script?
« Last Edit: January 14, 2016, 11:20:08 am by Daveybird »

SailorSat

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1208
  • Last login:Yesterday at 10:28:00 pm
    • For Amusement Only e.V.
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #89 on: January 14, 2016, 11:59:05 am »
Okay, thanks. Are those all the AI cars, or only the 20 that Nuexzz found before? And also. how do you put these in game with a lua script?

Did you even look at the list?

Anyway...
CAR1 starts at RAMBASE + 0x5180
CAR2 starts at RAMBASE + 0x5480
CAR3 starts at RAMBASE + 0x5780
CAR4 starts at RAMBASE + 0x5A80
and so on...

to change the primary model of CAR1 you would change RAMBASE + 0x5180 + 0x0014
to change the secondary model of CAR1 you would change RAMBASE + 0x5180 + 0x0258

Code: [Select]
RAMBASE=0x00500000;
CAR1    =0x5180;
CAR2    =0x5480;
CAR3    =0x5780;
CAR4    =0x5A80;
MODL1  =0x0014;
MODL2  =0x0258;
function Frame()
  -- change primary model of car1 to "virtua stock car"
  I960_WriteDWord(RAMBASE + CAR1 + MODL1, 0x028439E4);

  -- change secondary model of car1 to "none"
  I960_WriteDWord(RAMBASE + CAR1 + MODL2, 0);
end
« Last Edit: January 14, 2016, 12:03:53 pm by SailorSat »
I do all that stuff even without a Joystick ;)
Soft-15kHz, cabMAME, For Amusement Only e.V.


Daveybird

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 14
  • Last login:January 28, 2018, 06:06:55 pm
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #90 on: January 14, 2016, 12:34:55 pm »
Okay thanks, it worked. I found some additional cars that you didn't list as well, doing some guesswork. Now how do you make the player car not have the player window (with the bars on the windshield and stuff) like Nuexzz did. and make it look like a straight up AI car?
« Last Edit: January 14, 2016, 05:53:53 pm by Daveybird »

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #91 on: January 14, 2016, 07:28:21 pm »
haha what a coincidence! just today I was working on some polygons offsets  :P

Code: [Select]
RAMBASE + 0x1488,23

Daveybird

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 14
  • Last login:January 28, 2018, 06:06:55 pm
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #92 on: January 14, 2016, 07:34:38 pm »
Okay, thanks! So 1464 only works with the 20 AI cars you initially found?

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #93 on: January 14, 2016, 07:50:52 pm »
That's right, but .. this code is passed, and I have all cars including the safety car and minis (although the latter has bugs)

Daveybird

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 14
  • Last login:January 28, 2018, 06:06:55 pm
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #94 on: January 14, 2016, 08:08:04 pm »
That's right, but .. this code is passed, and I have all cars including the safety car and minis (although the latter has bugs)

Thanks! Can you please tell me which code has all cars, Nuexzz? Or is it the one SailorSat gave me?

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #95 on: January 14, 2016, 08:32:53 pm »
It is that they are quite different codes, is not all that easy as it seems. some have faults .if you expect will be a little better, all you'll have is, hey this car has a problem! etc.

Daveybird

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 14
  • Last login:January 28, 2018, 06:06:55 pm
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #96 on: January 14, 2016, 08:44:54 pm »
It is that they are quite different codes, is not all that easy as it seems. some have faults .if you expect will be a little better, all you'll have is, hey this car has a problem! etc.

Ohhhh, I see. Still some work to do, eh?
« Last Edit: January 15, 2016, 06:37:48 pm by Daveybird »

angrorider

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 1
  • Last login:February 21, 2016, 05:34:37 pm
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #97 on: February 21, 2016, 08:27:20 am »
I have a small problem with the GUI and the text is all bunched up together. I've had this problem with plenty of old programs on my last computer too. I'm just checking to see if others have this problem or do I have to enable a compatibility mode.

jtslade

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 746
  • Last login:January 11, 2023, 11:34:45 am
  • Keep it looking originallish!
Daytona USA ++ Patch - Modding and Hacks
« Reply #98 on: March 07, 2016, 10:02:01 am »
Awesome.. In the model 2 emu

Anyone else have a problem when using the Logitech G25.  No matter what I do the gas pedal just reacts weird.. Have seen this since day one.. Small press floors the pedal and then lifting off the pedal slams the brakes.. Anyone have weird gas pedal action?


Sent from my iPhone using Tapatalk
« Last Edit: March 07, 2016, 05:32:47 pm by jtslade »
Ms. Pacman Original Cocktail with Non destructive mod to Groovy Arcade Linux with All 4way Vertical Cocktail capable 2 button or less games.


Neo Geo MVS Mame Cab Running Hyperspin, 25" Nanao Arcade Monitor, Mini-pac, ATI Radeon HD 4850 (ATOM-15), IL 8 Way Euro-Sticks from Paradise Arcade, Win XP 64bit, and tons of other junk.


ant2

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 227
  • Last login:March 26, 2024, 02:36:51 pm
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #99 on: March 09, 2016, 05:08:23 pm »
Awesome.. In the model 2 emu

Anyone else have a problem when using the Logitech G25.  No matter what I do the gas pedal just reacts weird.. Have seen this since day one.. Small press floors the pedal and then lifting off the pedal slams the brakes.. Anyone have weird gas pedal action?


Sent from my iPhone using Tapatalk

Make sure you invert the required axis. Iirc the brake needs to be inverted

eldiego

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 37
  • Last login:March 09, 2024, 11:01:54 am
  • I do my daytona twin, arcade 4 players and vpin!!!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #100 on: June 26, 2016, 12:24:13 am »
Hola Nuexzz te he enviado algunos pm, pero no me aparecen en la bandeja de enviados. luego te contacte por youtube, esta es mi ultima esperanza! jeje, estoy cambiando las texturas del auto pero tengo problemas para identificar cada parte del auto, por ejemplo en el techo le dicolor al numero pero no me cubrio todo el techo y no encuentro al textura debajo del numero...:( vos tendrias alguna lista con el nombre de cada textura yq eu parte del auto es? o tenes algun auto para compartirme y mirando ahi ya me arreglaria.
Muchas gracias!

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #101 on: June 26, 2016, 06:53:49 pm »
Hola DIEGO UFF la unica forma que tienes es poner una textura de color que tu puedas identificar y reemplazarla por la que ya esta en la carpeta scripts. lo siento en no poder ayudarte es que me costo tantoo trabajo localizar todos esos pedazos.
ahora estoy muy ocupado en mi vida real, lo siento.
saludos

eldiego

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 37
  • Last login:March 09, 2024, 11:01:54 am
  • I do my daytona twin, arcade 4 players and vpin!!!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #102 on: June 26, 2016, 07:01:22 pm »
No te hagas problema, seguire y seguire probando. Abrazo

isamu

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 807
  • Last login:March 18, 2024, 02:38:32 am
  • I'm a llama!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #103 on: June 27, 2016, 02:55:26 am »
Hello Nuexzz. Can you please a music patch that allows us to mute the background music in Daytona USA. The songs are cool and everything, but I kinda wanna do the whole custom soundtrack thing, since I plan on investing a significant amount of time in the game.

N4HW3ll

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 15
  • Last login:February 26, 2018, 03:23:07 pm
  • Daytona usa experimented Player
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #104 on: December 11, 2016, 02:53:15 pm »
so... is there any news or anything about the next version?, im kinda curious  :P

Renard

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 1
  • Last login:June 27, 2018, 06:45:55 pm
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #105 on: February 18, 2017, 10:33:48 pm »
Hello everyone, and thanks a lot for your work SailorSat and Nuexzz! Impressive stuff really, and I'm so glad people are still playing around with the Model 2 :D

I'm trying to get a 8 players setup running for a summer week-end - a project just for kicks, and to hopefully allow people who never saw the game to experience it - and I'll definitely use part of your work to ease things up. Right now for instance I'm using Daytona++ to test out a few things, especially to force the panoramic attract mode with the "deluxe" cab settings (much better colors on the generic LCD screens I'll be using).

I've had a few fun glitches so far:
- if machine #8 isn't set as Master, it will only run the solo demo instead of the panoramic one even if forced / patched apparently
- in a few occasions, I've had machine #8 (when as slave) also lose the upper text layer, used for the "insert coin" texts and, funnily enough, the Daytona logo itself: http://i.imgur.com/W2PU3xw.png?1
- I've also had machine #3 lose the whole 3D layer once for no reason, but it came back when next synced with the title screen

Right now I'm looking into how to directly patch the m2emu in order to force the panoramic attract mode, without having to use Nuexzz' launcher; it would allow me to autostart the game upon boot with the feature enabled while still using the "Deluxe" cab setting, which would be convenient if I have to restart the computers after a crash or something. How does one do this? I'm also looking into visualizing instances of m2emu, to cut down costs on computers and to have less hardware to carry around (unfortunately, m2emu doesn't allow the users to dedicate a fullscreen instance to a given screen, and tools such as BorderlessGaming only stretch the windowed mode which then looks very ugly on a LCD... so having m2emu containers might be the best option, I think).

Also, last but not least: are you in Germany, SailorSat? My little experiment will hopefully be setup in Stuttgart. :P

Miknoian

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 1
  • Last login:May 03, 2017, 11:01:27 pm
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #106 on: May 03, 2017, 11:00:01 pm »
Hello guys; I've been enjoying this mod immensely, however, I do have a question regarding input. Is there any way to adjust the driving sensitivity when using a 360 controller? As it stands, the controls are very touchy for me. Thank you.

power69ful

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 3
  • Last login:March 06, 2018, 02:11:36 pm
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #107 on: February 11, 2018, 11:28:06 pm »
Thanks Nuez for the patch, the game looks pretty well.

If I want to change the resolution to 1400x900 how can I do it?



Hola DIEGO UFF la unica forma que tienes es poner una textura de color que tu puedas identificar y reemplazarla por la que ya esta en la carpeta scripts. lo siento en no poder ayudarte es que me costo tantoo trabajo localizar todos esos pedazos.
ahora estoy muy ocupado en mi vida real, lo siento.
saludos

Gracias Nuexzz por el parche y por tu gran trabajo. El juego se ve bastante bien.

Si yo quisiera cambiar la resolución por 1400x900 como lo puedo hacer?

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #108 on: February 15, 2018, 09:16:10 pm »
well you should open "emulator.ini" and edit manually

Code: [Select]
FullScreenWidth = 1400
FullScreenHeight = 900

and do not touch the resolution of the GUI Daytona USA ++, otherwise it will write another resolution.

envido32

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 8
  • Last login:September 09, 2023, 06:06:49 pm
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #109 on: February 20, 2018, 04:12:24 pm »
May I ask for a suggestion? Add some sequential shift option? I know it's not a popular suggestion, but right now I'm using H2Seq ( http://www.racermame.altervista.org/download.htm ) with JoyToKey ( https://joytokey.net/en/download ) and even tho it works it not the most elegant solution... I don't know if there is any other way?

Thanks for the software, for everything else it working excellent.

envido32

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 8
  • Last login:September 09, 2023, 06:06:49 pm
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #110 on: February 27, 2018, 05:44:15 pm »
And I manage to made a simple script by myself. Just create a DaytonaUSA.cmd in the same directary along with H2Seq.exe and JoyToKey.exe (and their config)

Code: (DaytonaUSA.cmd) [Select]
@echo off
title Daytona+++
start "H2Seq" H2Seq.exe
start "JoyToKey" JoyToKey.exe
start "Daytona" /wait "Daytona USA ++.exe"
taskkill /im H2Seq.exe
taskkill /im JoyToKey.exe

Code: (config.ini) [Select]

[gear_assign]
first = c
second = t
third = r
fourth = n
clutch = SPACE

[view_assign]
view 1 = j
view 2 = k
view 3 = x
view 4 = b

[key_assign]
gearup = 41
geardown = 5A
view = 56

[emu]
model2 = 1
mame = 1
racermame = 1

[misc]
autoclutch = 1
kdd = 30
kd = 5
sleeptime = 80
priority = 2

Code: (Profile 1.cfg) [Select]
[General]
FileVersion=57
NumberOfJoysticks=2
NumberOfButtons=32
DisplayMode=2
UseDiagonalInput=0
UsePOV8Way=0
Threshold=20
Threshold2=20
KeySendMode=0
SoundFile=
ImageFile=

[Joystick 1]
Button13=1, 41:00:00:00, 0.000, 0, 0
Button14=1, 5A:00:00:00, 0.000, 0, 0
Button01=1, 43:00:00:00, 0.000, 0, 0
Button02=1, 52:00:00:00, 0.000, 0, 0
Button03=1, 54:00:00:00, 0.000, 0, 0
Button04=1, 4E:00:00:00, 0.000, 0, 0
Button05=1, 41:00:00:00, 0.000, 0, 0
Button06=1, 5A:00:00:00, 0.000, 0, 0



khoubash

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 9
  • Last login:December 27, 2020, 06:55:40 pm
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #111 on: March 15, 2018, 06:49:25 pm »
Good work.  :applaud:

stf999

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 49
  • Last login:January 24, 2023, 06:24:52 am
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #112 on: February 06, 2019, 12:01:45 pm »
Hi Nuexzz,
I'm still a big user of your hack (so are the people around me) and still thankful for it.
Do you think we could get in touch ? I'd like to give a hand for the textures if you're still on the project :).
(Perhaps you've had a look at the textures I've just released: ** CLICK HERE **)
I'd be honored.
DAYTONA USA 2019 Textures pack ** CLICK HERE **

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #113 on: February 06, 2019, 12:34:48 pm »
wow it looks great !! Congratulations.
I tried it and I have to say that I am amazed at its ability with the edition of images.  :applaud:
(I know it's a lot of work that you did)

we can work on things if you're fans
P.M



stf999

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 49
  • Last login:January 24, 2023, 06:24:52 am
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #114 on: February 06, 2019, 03:26:58 pm »
With pleasure ! I've never seen the UI you're using... Is it available somewhere ?
DAYTONA USA 2019 Textures pack ** CLICK HERE **

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #115 on: February 07, 2019, 08:18:33 am »
ha se, I'm working on a GUI for model 2, because when I try to change something small I have to edit the ini files I hate them. I hope to make it public very soon

stf999

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 49
  • Last login:January 24, 2023, 06:24:52 am
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #116 on: February 07, 2019, 01:37:42 pm »
Sure ! A good option would be a bigger choice of screen resolutions (instead of "custom (Set in .in)") :)
Well done again !!
DAYTONA USA 2019 Textures pack ** CLICK HERE **

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #117 on: February 08, 2019, 08:39:18 am »

Sure ! A good option would be a bigger choice of screen resolutions (instead of "custom (Set in .in)") :)
Well done again !!



that's why I created the gui was the first goal and it's already implemented clear

stf999

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 49
  • Last login:January 24, 2023, 06:24:52 am
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #118 on: February 08, 2019, 02:29:49 pm »
 :applaud: Cool ! Cool ! Cool !  :applaud: That has always been a wish here as Daytona can be played (linked) on different kinds of screens.
DAYTONA USA 2019 Textures pack ** CLICK HERE **

jabz

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 5
  • Last login:October 08, 2022, 02:06:35 am
  • I want to build my own arcade controls!
Re: Daytona USA ++ Patch - Modding and Hacks
« Reply #119 on: April 26, 2019, 11:21:53 pm »
Hi would this patch allow the M2 emulator to run under Windows 10?
I've built a beefy machine for VR, but would love to get Daytona USA functioning on it with my Thrustmaster wheel  and H Shifter.
I downloaded the M2 Nebula v1.1a but it hangs when starting