diff options
author | mageven <62494521+mageven@users.noreply.github.com> | 2021-03-23 00:10:07 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 19:40:07 +0100 |
commit | 69f8722e795b0d76b84efa4de52e199e9441fca7 (patch) | |
tree | b6cbc30ea90604127d6c4a2f010b5fb756483155 /ARMeilleure/Translation/PTC/PtcLoadingState.cs | |
parent | 0b022cad1e09559bd566cb90caf82ce35943752f (diff) |
Fix inconsistencies in progress reporting (#2129)
Signal and setup events correctly
Eliminate possible races
Use a single event
Mark volatiles and reduce scope of waithandles
Common handler
100ms -> 50ms
Diffstat (limited to 'ARMeilleure/Translation/PTC/PtcLoadingState.cs')
-rw-r--r-- | ARMeilleure/Translation/PTC/PtcLoadingState.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ARMeilleure/Translation/PTC/PtcLoadingState.cs b/ARMeilleure/Translation/PTC/PtcLoadingState.cs new file mode 100644 index 00000000..526cf91f --- /dev/null +++ b/ARMeilleure/Translation/PTC/PtcLoadingState.cs @@ -0,0 +1,9 @@ +namespace ARMeilleure.Translation.PTC +{ + public enum PtcLoadingState + { + Start, + Loading, + Loaded + } +}
\ No newline at end of file |