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
a9a8c5f8
Verified
Commit
a9a8c5f8
authored
1 year ago
by
João Magalhães
Browse files
Options
Downloads
Patches
Plain Diff
fix: clippy issue
parent
c52187ef
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#3063
passed
1 year ago
Stage: build
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontends/sdl/src/main.rs
+1
-1
1 addition, 1 deletion
frontends/sdl/src/main.rs
with
1 addition
and
1 deletion
frontends/sdl/src/main.rs
+
1
−
1
View file @
a9a8c5f8
...
...
@@ -210,7 +210,7 @@ impl Emulator {
pub
fn
load_rom
(
&
mut
self
,
path
:
Option
<&
str
>
)
{
let
rom_path
:
&
str
=
path
.unwrap_or
(
&
self
.rom_path
);
let
ram_path
=
replace_ext
(
rom_path
,
"sav"
)
.unwrap_or
(
"invalid"
.to_string
());
let
ram_path
=
replace_ext
(
rom_path
,
"sav"
)
.unwrap_or
_else
(||
"invalid"
.to_string
());
let
rom
=
self
.system
.load_rom_file
(
rom_path
,
if
Path
::
new
(
&
ram_path
)
.exists
()
{
...
...
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