Glenn Maynard
d11ed7b8bf
split out DumpList
2006-04-24 16:08:04 +00:00
Glenn Maynard
d670bcc516
fix entity; fix quotes (why are there quotes here?)
2006-04-24 16:00:36 +00:00
Glenn Maynard
a2de371ac7
fix encoding
2006-04-24 15:58:25 +00:00
Glenn Maynard
407c2dd420
revert (goofy FOREACH macro scoping needs fixing first)
2006-04-24 15:44:49 +00:00
Glenn Maynard
374c6cc3ea
spacing changes only
2006-04-24 15:39:54 +00:00
Glenn Maynard
9e4c0c3448
fix substitutions
2006-04-24 15:31:28 +00:00
Chris Danford
ab363bd1fc
localizable prompt answer text
2006-04-24 12:21:37 +00:00
Chris Danford
66143a97d2
fix bogus assert
2006-04-24 12:16:31 +00:00
Chris Danford
9a7b4b1b0b
handle install/uninstall permission errors
2006-04-24 09:24:07 +00:00
Chris Danford
2fb7175388
localize error text, shortcuts, autorun text
2006-04-24 07:27:18 +00:00
Chris Danford
3d151d6efa
better translations
2006-04-23 09:07:33 +00:00
Glenn Maynard
44377e187a
Fix "--with-ffmpeg" causes ffmpeg to be disabled. (This was "$enableval"
...
before. The "enable" vs. "with" distinction in autoconf is confusing
and not useful ...)
2006-04-22 00:20:19 +00:00
Sean Burke
5a0daf8e78
Fix disabling of ffmpeg
2006-04-21 22:38:02 +00:00
Chris Danford
5107e27944
corrections
2006-04-21 18:40:37 +00:00
Chris Danford
7a9497e30c
remove unfinished multiplayer stuff
2006-04-21 00:48:30 +00:00
Chris Danford
5749dbb258
add "joystick with keyboard" button for Back
2006-04-21 00:46:36 +00:00
Chris Danford
bead3edf0e
add multiplayer status
2006-04-21 00:43:32 +00:00
Chris Danford
63989c4aee
don't run InitCommand until fonts are loaded
2006-04-21 00:42:56 +00:00
Chris Danford
603a13e520
tab cleanup
2006-04-21 00:42:01 +00:00
Chris Danford
5c9bc7259b
remove unused ControllerStateDisplay
2006-04-21 00:41:47 +00:00
Chris Danford
c44f80eede
remove ControllerStateDisplay
2006-04-21 00:37:27 +00:00
Chris Danford
1189805ada
32 player messages
2006-04-21 00:34:36 +00:00
Chris Danford
e8cbdd860b
keep track of last judgment(for XML Judgment
2006-04-21 00:33:55 +00:00
Chris Danford
a6272ec9ca
tab cleanup
...
remove unfinished multiplayer stuff
2006-04-21 00:17:48 +00:00
Chris Danford
82c56f6589
hack for testing 32 joysticks
2006-04-21 00:15:35 +00:00
Chris Danford
8c31297dac
32 joysticks
2006-04-21 00:13:46 +00:00
Chris Danford
4ab7a3764b
tab cleanup
2006-04-21 00:12:59 +00:00
Chris Danford
bef9815537
add lua binding
2006-04-21 00:12:44 +00:00
Chris Danford
8526e621ea
remove unfinished, crufty multiplayer stuff
2006-04-21 00:11:20 +00:00
Chris Danford
21efde7a06
add Lua/Xml bindings
2006-04-21 00:07:27 +00:00
Charles Lohr
5015edd19f
Add support for realtime mod activation.
2006-04-19 05:29:47 +00:00
Charles Lohr
5031598609
Add support for realtime mod activation. (Documentation)
2006-04-19 05:28:55 +00:00
AJ Kelly
b1683f2c6a
fix German translations in PaneDisplay
2006-04-16 18:43:51 +00:00
AJ Kelly
18a1cd92c6
fix up duplication of [PaneDisplay], whoops
2006-04-16 00:03:29 +00:00
AJ Kelly
d24c712d9f
in preparation of Localization of PaneDisplay elements (non-English languages Babelfished, check translations with people who know the languages)
2006-04-15 23:46:23 +00:00
Mike Calfin
673f5445e6
fixed menu timer spreading apart when time runs out and roulette starts
2006-04-14 16:52:42 +00:00
Josh Allen
90121ba0f7
Comment, is it still needed?
2006-04-14 13:26:22 +00:00
Glenn Maynard
5f3fe4ec4f
fix RemoveSimultaneousNotes never removes hold notes
2006-04-14 12:44:34 +00:00
Glenn Maynard
fad6a6e4c1
cleanup
2006-04-14 12:27:58 +00:00
Glenn Maynard
3e036ff06a
Apply m_ColumnInfo->fXOffset in GetXPos. Doing this in BeginDrawTrack makes
...
it hard to apply effects in the right order. (This might also be able to
simplify Flip, but that's for later ...)
Fix Mini scaling doesn't apply to mod adjustments. Fixes weird "Mini+Flip"
and probably other combinations.
(This also eliminates the need for NoteFieldMode entirely, which I've wanted
to remove for a long time.)
2006-04-14 12:21:34 +00:00
Mike Calfin
79708bde53
realigned pane display
2006-04-14 08:09:51 +00:00
Josh Allen
6131ab52c0
Apparently this was needed, grades show all the time not just sometimes.
2006-04-11 05:19:53 +00:00
Josh Allen
14a86de093
Fix grade display on MusicWheel. Setting the hidden values makes more sence than setting the diffuse alpha values.
2006-04-10 23:31:02 +00:00
Glenn Maynard
7a94b959c9
Destroy D3D after destroying the window. Fixes another DestroyWindow
...
crash: start in fullscreen, change to a window, close the game.
This is sort of trial-and-error: there seems to be no documentation about
the proper order of shutting down a window. Shutting down D3D first
makes sense: restore the window to normal, then destroy it, so we don't
kill the window while D3D is still using it. But this seems to work, and
it's how we did it in 3.9.
(I think releasing D3D first is leaving traces behind in the window, which
then cause stale dereferences; the previous FreeLibrary() change was for
the same problem, and this seems to just be another incarnation of that.)
7c918fea: ntdll!RtlpWaitForCriticalSection [7c900000+18f8f+5b]
77d48bd9: USER32!GetWindowThreadProcessId [77d40000+8a80+159]
77d4b3cc: USER32!DefWindowProcW [77d40000+b33c+90]
7c90104b: ntdll!RtlEnterCriticalSection [7c900000+1005+46]
6d9ab228: D3D8!CheckFullscreen [6d9a0000+b060+1c8]
77d48734: USER32!GetDC [77d40000+86c7+6d]
77d4b4c0: USER32!DefWindowProcW [77d40000+b33c+184]
7c90eae3: ntdll!KiUserCallbackDispatcher [7c900000+ead0+13]
77d4daf6: USER32!DestroyWindow [77d40000+daea+c]
00539971: void GraphicsWindow::DestroyGraphicsWindow(void) [00400000+1398d1+a0]
2006-04-10 15:08:04 +00:00
Josh Allen
533e784008
add missing font
2006-04-09 23:07:12 +00:00
Josh Allen
179113a741
update
2006-04-09 23:03:04 +00:00
Josh Allen
8032080a0e
On command for the background
2006-04-09 23:01:26 +00:00
AJ Kelly
fa56a05974
new fallback graphics
2006-04-09 22:24:54 +00:00
Josh Allen
4e70de013d
Hide server option field if there are no servers found
2006-04-09 21:50:19 +00:00
Josh Allen
da5b02d2b6
Fix crashing if there are zero profiles defined
2006-04-09 21:49:42 +00:00