use ST mouse as static standard driver, too

This commit is contained in:
Christian Groessler 2014-01-11 01:33:59 +01:00
parent c22b91e3c3
commit c78d7a82fb
1 changed files with 4 additions and 4 deletions

View File

@ -8,15 +8,15 @@
.export _mouse_static_stddrv
.ifdef __ATARIXL__
.import _atrxjoy_mou
.import _atrxst_mou
.else
.import _atrjoy_mou
.import _atrst_mou
.endif
.rodata
.ifdef __ATARIXL__
_mouse_static_stddrv := _atrxjoy_mou
_mouse_static_stddrv := _atrxst_mou
.else
_mouse_static_stddrv := _atrjoy_mou
_mouse_static_stddrv := _atrst_mou
.endif