Skip to content

Commit

Permalink
windows: fix dedicated build
Browse files Browse the repository at this point in the history
  • Loading branch information
nillerusr committed Dec 16, 2022
1 parent 8404418 commit af8c358
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 16 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
name: Build

on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
on: [push, pull_request]

jobs:
build-linux-i386:
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
name: Tests

on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
on: [push, pull_request]

jobs:
tests-linux-i386:
Expand Down
2 changes: 1 addition & 1 deletion dedicated/sys_ded.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ bool CDedicatedSteamApplication::Create( )
//-----------------------------------------------------------------------------
int main(int argc, char **argv)
{
#ifndef POSIX
#if !defined( POSIX ) && !defined( PLATFORM_64BITS )
_asm
{
fninit
Expand Down
3 changes: 2 additions & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,8 @@ def configure(conf):
'/Zc:forScope',
'/Zc:wchar_t',
'/GR',
'/TP'
'/TP',
'/EHsc'
]

if conf.options.BUILD_TYPE == 'debug':
Expand Down

0 comments on commit af8c358

Please sign in to comment.