Skip to content

Commit

Permalink
changed not finding java path to a warning rather than fatal error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Olly committed Oct 1, 2013
1 parent 6f32d4e commit 7997313
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/misc/smart.simba
Expand Up @@ -234,8 +234,10 @@ begin

if (findJavaPath(result)) then
print('Found your java path @ ' + result)
else
print('Failed to find your Java path, add JRE to your system''s PATH before JDK (if you have JDK), and disable smartGetJavaPath', TDebug.FATAL);
else begin
print('Failed to find your Java path', TDebug.WARNING);
print('If RS is failing to switch to OpenGL mode, add JRE to your systems path before JDK (if you have JDK)', TDebug.HINT);
end;
{$ELSE}
print('Not searching for your Java path. Make sure the JRE is in your system''s PATH before JDK (if you have JDK).', TDebug.WARNING);

Expand Down

0 comments on commit 7997313

Please sign in to comment.