Skip to content

Commit

Permalink
fix: core/samples
Browse files Browse the repository at this point in the history
  • Loading branch information
turborium committed Dec 23, 2022
1 parent 4608046 commit 1e5395c
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion examples/core/core_3d_picking/core_3d_picking_src.pas
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ implementation

uses
SysUtils,
raylib in '..\..\..\raylib\raylib.pas';
raylib;

//------------------------------------------------------------------------------------
// Program main entry point
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ implementation

uses
SysUtils,
raylib in '..\..\..\raylib\raylib.pas';
raylib;

type
TGameScreen = (gsLogo, gsTitle, gsGameplay, gsEnding);
Expand Down
4 changes: 2 additions & 2 deletions examples/core/core_drop_files/core_drop_files_src.pas
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ implementation
uses
SysUtils,
Math,
raylib in '..\..\..\raylib\raylib.pas',
raymath in '..\..\..\raylib\raymath.pas';
raylib,
raymath;

// fixed bugs in original example

Expand Down
2 changes: 1 addition & 1 deletion examples/core/core_input_keys/core_input_keys_src.pas
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ implementation

uses
SysUtils,
raylib in '..\..\..\raylib\raylib.pas';
raylib;

procedure Main();
const
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ implementation
uses
SysUtils,
Classes,
raylib in '..\..\..\raylib\raylib.pas';
raylib;

var
DataLoaded: Boolean = False;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ implementation

uses
SysUtils,
raylib in '..\..\..\raylib\raylib.pas';
raylib;

//------------------------------------------------------------------------------------
// Program main entry point
Expand Down
6 changes: 3 additions & 3 deletions examples/core/core_storage_values/core_storage_values_src.pas
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ implementation

uses
SysUtils,
raylib in '..\..\..\raylib\raylib.pas',
raymath in '..\..\..\raylib\raymath.pas',
rlgl in '..\..\..\raylib\rlgl.pas';
raylib,
raymath,
rlgl;

const
STORAGE_DATA_FILE = 'storage.data'; // Storage file
Expand Down

0 comments on commit 1e5395c

Please sign in to comment.