Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
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
Main
Synchronet
Commits
4c340f05
Commit
4c340f05
authored
19 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
Disable LogTimer and ServiceStatsTimer by default.
Use new VERSION_HEX macro for bbs_ver_num() result check.
parent
8446da81
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/sbbs3/ctrl/MainFormUnit.cpp
+3
-1
3 additions, 1 deletion
src/sbbs3/ctrl/MainFormUnit.cpp
with
3 additions
and
1 deletion
src/sbbs3/ctrl/MainFormUnit.cpp
+
3
−
1
View file @
4c340f05
...
...
@@ -978,7 +978,7 @@ void __fastcall TMainForm::FormCreate(TObject *Sender)
// Verify SBBS.DLL version
long
bbs_ver
=
bbs_ver_num
();
if
(
bbs_ver
<
(
0x31300
|
'A'
-
'A'
)
||
bbs_ver
>
(
0x399
<<
8
)
)
{
if
(
bbs_ver
!=
VERSION_HEX
)
{
char
str
[
128
];
sprintf
(
str
,
"Incorrect SBBS.DLL Version (%lX)"
,
bbs_ver
);
Application
->
MessageBox
(
str
,
"ERROR"
,
MB_OK
|
MB_ICONEXCLAMATION
);
...
...
@@ -2309,6 +2309,8 @@ void __fastcall TMainForm::StartupTimerTick(TObject *Sender)
Initialized
=
true
;
UpTimer
->
Enabled
=
true
;
/* Start updating the status bar */
LogTimer
->
Enabled
=
true
;
ServiceStatusTimer
->
Enabled
=
true
;
if
(
!
Application
->
Active
)
/* Starting up minimized? */
FormMinimize
(
Sender
);
/* Put icon in systray */
...
...
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