Skip to content

Commit 8af970d

Browse files
committed
small tidy up
1 parent a6889e1 commit 8af970d

File tree

4 files changed

+5469
-4057
lines changed

4 files changed

+5469
-4057
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This project is still in the early stages of development, so there may be bugs a
1818

1919
## Introduction
2020

21-
This project is built with React and Electron and uses ths iRacing SDK via [irsdk-node](https://github.com/bengsfort/irsdk-node) library to retrieve data from the iRacing live telemetry memory-map.
21+
This project is built with React and Electron and uses the iRacing SDK to retrieve data from the iRacing live telemetry memory-map.
2222

2323
## Installation
2424

@@ -87,6 +87,7 @@ irdashies/
8787
```
8888

8989
- `src/app/` contains the main Electron application code.
90+
- `src/app/irsdk/` contains the iRacing SDK code including the native C++ bindings.
9091
- `src/frontend/` contains the React components for the overlays.
9192
- `src/types/` contains TypeScript type definitions shared between the frontend and backend (e.g. telemetry types).
9293

src/app/bridge/iracingSdk/setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ async function setupBridge(
3737
}
3838

3939
const module =
40-
isDemoMode
40+
isDemoMode || process.platform !== 'win32'
4141
? await import('./mock-data/mockSdkBridge')
4242
: await import('./iracingSdkBridge');
4343

0 commit comments

Comments
 (0)