Skip to content

Commit

Permalink
Updated version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayveer committed Sep 10, 2020
1 parent d229c40 commit 58fe4e0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ You can also repack an existing decima archive file. The first argument is the b
```
DecimaExplorer.exe -swap "G:\path\to\game\data\files" "G:\path\to\swap.txt"
```
Finally there is a swap command which allows you to swap two hashes so that the game will pick up a different core file instead of the one it is pointing at. In most cases this will cause a crash but it's here if anyone finds a use for it. The swap text file will look like this;
Lastly, there is a swap command which allows you to swap two hashes so that the game will pick up a different core file instead of the one it is pointing at. In most cases this will cause a crash but it's here if anyone finds a use for it. The swap text file will look like this;
```
file/to/swap/first -> file/to/swap/second
another/file/to/swap/first -> another/file/to/swap/second
```
the above would simple be saved as a .txt file.
the above would simply be saved as a .txt file.

## License
[GPL](ooz/LICENSE.md)
Expand Down
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

int main(int argc, char **argv) {
CLI cli = CLI(argc, argv);
cli.run("Decima Explorer", "2.5");
cli.run("Decima Explorer", "2.6");
}
2 changes: 1 addition & 1 deletion main_gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR args, int ncmdshow) {
GUI gui = GUI(hInst);
gui.run("Decima Explorer", "2.5");
gui.run("Decima Explorer", "2.6");
}

0 comments on commit 58fe4e0

Please sign in to comment.