The Windows absolute path checker now considers the forward slash as well;

Applied all applicable PCem commits;
The PS/1 and PS/2 machines now have the correct graphics cards - fixes the reference diskettes;
The open dialog code now changes directory to usr_path after the dialog is closed;
Disabled excess logging in the TI SVGA code.
This commit is contained in:
OBattler
2017-12-04 20:35:05 +01:00
parent fc34a6eaf3
commit ae66b3f124
9 changed files with 66 additions and 32 deletions

View File

@@ -465,7 +465,7 @@ plat_path_slash(wchar_t *path)
int
plat_path_abs(wchar_t *path)
{
if ((path[1] == L':') || (path[0] == L'\\'))
if ((path[1] == L':') || (path[0] == L'\\') || (path[0] == L'/'))
return(1);
return(0);