Skip to content

Commit

Permalink
fix: Resolve ruffle paths
Browse files Browse the repository at this point in the history
  • Loading branch information
colin969 committed Oct 19, 2023
1 parent b339b0e commit a864449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/core-ruffle/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { RuffleWebEmbedMiddleware } from './middleware/embed';

export async function activate(context: flashpoint.ExtensionContext): Promise<void> {
// const registerSub = (d: flashpoint.Disposable) => { flashpoint.registerDisposable(context.subscriptions, d); };
const baseDataPath = path.join(flashpoint.config.flashpointPath, 'Data', 'Ruffle');
const baseDataPath = path.resolve(flashpoint.config.flashpointPath, 'Data', 'Ruffle');
const ruffleWebLatestDir = path.join(baseDataPath, 'webhosted', 'latest');
const ruffleStandaloneLatestDir = path.join(baseDataPath, 'standalone', 'latest');

Expand Down

0 comments on commit a864449

Please sign in to comment.