mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-09 11:51:09 +08:00
add exception list
This commit is contained in:
parent
a4d431c6c4
commit
d0699a381d
2
.github/workflows/linux.yml
vendored
2
.github/workflows/linux.yml
vendored
@ -1,9 +1,11 @@
|
||||
name: Linux builds
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
build:
|
||||
if: contains('joncampbell123', github.actor) == false
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Cancel Previous Runs
|
||||
|
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
@ -1,9 +1,11 @@
|
||||
name: macOS builds
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
build:
|
||||
if: contains('joncampbell123', github.actor) == false
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- name: Cancel Previous Runs
|
||||
|
2
.github/workflows/mingw32.yml
vendored
2
.github/workflows/mingw32.yml
vendored
@ -1,9 +1,11 @@
|
||||
name: 32-bit MinGW builds
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
build:
|
||||
if: contains('joncampbell123', github.actor) == false
|
||||
runs-on: windows-latest
|
||||
defaults:
|
||||
run:
|
||||
|
2
.github/workflows/mingw64.yml
vendored
2
.github/workflows/mingw64.yml
vendored
@ -1,9 +1,11 @@
|
||||
name: 64-bit MinGW builds
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
build:
|
||||
if: contains('joncampbell123', github.actor) == false
|
||||
runs-on: windows-latest
|
||||
defaults:
|
||||
run:
|
||||
|
@ -1494,9 +1494,13 @@ void SERIAL::Run()
|
||||
} catch (...) {
|
||||
}
|
||||
if (port >= 1 && port <= 9) {
|
||||
showPort(port-1);
|
||||
return;
|
||||
}
|
||||
showPort(port-1);
|
||||
return;
|
||||
}
|
||||
if (port < 1 || port > 9) {
|
||||
WriteOut("Must specify a port number between 1 and 9.\n");
|
||||
return;
|
||||
}
|
||||
} if (cmd->GetCount() >= 2) {
|
||||
// Which COM did they want to change?
|
||||
int port = -1;
|
||||
@ -1506,7 +1510,6 @@ void SERIAL::Run()
|
||||
} catch (...) {
|
||||
}
|
||||
if (port < 1 || port > 9) {
|
||||
// Didn't understand the port number.
|
||||
WriteOut("Must specify a port number between 1 and 9.\n");
|
||||
return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user