Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
boytacean
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
João Magalhães
boytacean
Commits
f95e3831
Verified
Commit
f95e3831
authored
1 year ago
by
João Magalhães
Browse files
Options
Downloads
Patches
Plain Diff
chore: restored test section
parent
377d21b0
No related branches found
No related tags found
No related merge requests found
Pipeline
#3404
failed
1 year ago
Stage: build
Stage: test
Stage: deploy
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontends/web/ts/gb.ts
+8
-4
8 additions, 4 deletions
frontends/web/ts/gb.ts
with
8 additions
and
4 deletions
frontends/web/ts/gb.ts
+
8
−
4
View file @
f95e3831
...
...
@@ -26,7 +26,8 @@ import {
DebugSettings
,
HelpFaqs
,
HelpKeyboard
,
SerialSection
SerialSection
,
TestSection
}
from
"
../react
"
;
import
{
...
...
@@ -397,9 +398,8 @@ export class GameboyEmulator extends EmulatorBase implements Emulator {
// in case a remote ROM loading operation has been
// requested then loads it from the remote origin
if
(
loadRom
)
{
({
name
:
romName
,
data
:
romData
}
=
await
GameboyEmulator
.
fetchRom
(
romPath
));
({
name
:
romName
,
data
:
romData
}
=
await
GameboyEmulator
.
fetchRom
(
romPath
));
}
else
if
(
romName
===
null
||
romData
===
null
)
{
[
romName
,
romData
]
=
[
this
.
romName
,
this
.
romData
];
}
...
...
@@ -547,6 +547,10 @@ export class GameboyEmulator extends EmulatorBase implements Emulator {
name
:
"
Serial
"
,
icon
:
require
(
"
../res/serial.svg
"
),
node
:
SerialSection
({
emulator
:
this
})
},
{
name
:
"
Test
"
,
node
:
TestSection
({})
}
];
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment